home *** CD-ROM | disk | FTP | other *** search
/ QuickTime 2.0 Developer Kit / QuickTime 2.0 Developer Kit.iso / mac / MAC / Programming Stuff / Documentation / develop / develop Issue 12 / develop 12 code / Components / MoMathComponentPrivate.h < prev    next >
Encoding:
Text File  |  1992-10-16  |  1.1 KB  |  45 lines  |  [TEXT/KAHL]

  1. /*
  2.     File:        MoMathComponentPrivate.h
  3.  
  4.     Contains:    Private header file for MoMath component routines.
  5.  
  6.     Written by:    Gary Woodcock
  7.  
  8.     Copyright:    © 1992 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.  
  12. */
  13.  
  14. //-----------------------------------------------------------------------
  15. // Includes
  16.  
  17. #ifndef    _MOMATHCOMPONENTPRIVATE_
  18. #define    _MOMATHCOMPONENTPRIVATE_
  19.  
  20. #include <QuickTimeComponents.h>
  21. #include "DebugFlags.h"
  22.  
  23. //-----------------------------------------------------------------------
  24. // Private prototypes
  25.  
  26. #ifdef DEBUG_IT
  27.                      
  28. // Only need this prototype if we're running linked (for debugging)
  29. pascal    ComponentResult    MoMathDispatcher    (ComponentParameters    *params,
  30.                                              Handle                    storage);
  31.  
  32. #endif DEBUG_IT
  33.  
  34. pascal    ComponentResult    _MoMathCanDo        (short                    selector);
  35.  
  36. pascal    ComponentResult    _MoMathDoAdd        (short                    firstNum,
  37.                                              short                    secondNum,
  38.                                              short                    *additionResult);
  39.  
  40. //-----------------------------------------------------------------------
  41.  
  42. #endif    _MOMATHCOMPONENTPRIVATE_
  43.  
  44. //-----------------------------------------------------------------------
  45.